From 6c4ced0f79f801d85da5e4973ae4154f01b04dba Mon Sep 17 00:00:00 2001 From: Sebastien Castiel Date: Wed, 6 Dec 2023 12:22:24 -0500 Subject: Loading screens & layouts --- src/app/groups/[groupId]/page.tsx | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) (limited to 'src/app/groups/[groupId]/page.tsx') diff --git a/src/app/groups/[groupId]/page.tsx b/src/app/groups/[groupId]/page.tsx index 1577d7a..9547fcc 100644 --- a/src/app/groups/[groupId]/page.tsx +++ b/src/app/groups/[groupId]/page.tsx @@ -17,7 +17,7 @@ import { TableRow, } from '@/components/ui/table' import { getGroup, getGroupExpenses } from '@/lib/api' -import { ChevronLeft, ChevronRight, Edit, Plus } from 'lucide-react' +import { ChevronRight, Plus } from 'lucide-react' import Link from 'next/link' import { notFound } from 'next/navigation' @@ -32,22 +32,7 @@ export default async function GroupPage({ const expenses = await getGroupExpenses(groupId) return ( -
-
- - -
- -

{group.name}

- + <>
@@ -136,6 +121,6 @@ export default async function GroupPage({ -
+ ) } -- cgit v1.3